'Declaration
Public Function New( _ ByVal endpoint As String, _ ByVal attribute As String, _ ByVal errorId As String, _ ByVal attributeDataPayload As UAAttributeDataPayload(Of TValue) _ )
'Usage
Dim endpoint As String Dim attribute As String Dim errorId As String Dim attributeDataPayload As UAAttributeDataPayload(Of TValue) Dim instance As New UADataChangeNotificationPayload(Of TValue)(endpoint, attribute, errorId, attributeDataPayload)
public UADataChangeNotificationPayload<TValue>( string endpoint, string attribute, string errorId, UAAttributeDataPayload<TValue> attributeDataPayload )
public: UADataChangeNotificationPayload<TValue>( String^ endpoint, String^ attribute, String^ errorId, UAAttributeDataPayload<TValue^>^ attributeDataPayload )
Parameters
- endpoint
- A string specifying the OPC-UA server endpoint.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - attribute
- A string specifying the OPC-UA node, its attribute and index range list.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - errorId
- The error ID of the error.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - attributeDataPayload
- An event payload with an OPC-UA attribute value, together with status code and timestamps.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).